home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / webspeed.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  68 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10304);
  10.  script_bugtraq_id(969);
  11.  script_version ("$Revision: 1.14 $");
  12.  script_cve_id("CVE-2000-0127");
  13.  
  14.  name["english"] = "WebSpeed remote configuration";
  15.  name["francais"] = "configuration a distance de WebSpeed";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. It may be possible for an attacker to reconfigure the 
  20. remote web server by requesting :
  21.  
  22.     GET /scripts/wsisa.dll/WService=anything?WSMadmin
  23.     
  24.     
  25. Solution : Edit the ubroker.properties file and change
  26.     AllowMsngrCmds = 1
  27. to :
  28.     AllowMsngrCmds = 0
  29.     
  30.     
  31. Risk factor : High";
  32.  
  33.  
  34.  script_description(english:desc["english"]);
  35.  
  36.  summary["english"] = "Checks if webspeed can be administered";
  37.  summary["francais"] = "DΘtermine s'il est possible d'administrer webspeed";
  38.  
  39.  script_summary(english:summary["english"], francais:summary["francais"]);
  40.  
  41.  script_category(ACT_GATHER_INFO);
  42.  
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  45.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  46.  family["english"] = "CGI abuses";
  47.  family["francais"] = "Abus de CGI";
  48.  script_family(english:family["english"], francais:family["francais"]);
  49.  script_dependencie("find_service.nes", "no404.nasl");
  50.   script_require_ports("Services/www", 80);
  51.  exit(0);
  52. }
  53.  
  54. #
  55. # The script code starts here
  56. #
  57.  
  58. include("http_func.inc");
  59. include("http_keepalive.inc");
  60. port = get_http_port(default:80);
  61.  
  62. cgi = "/scripts/wsisa.dll/WService=anything?WSMadmin";
  63. res = is_cgi_installed_ka(item:cgi, port:port);
  64. if(res)security_hole(port);
  65.  
  66.  
  67.  
  68.